<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/*å…¬å…±æ&nbsp;·å¼ common.css*/
a{text-decoration: none; color: #000;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0;padding:0;font-family: "å¾®è½¯é›…é»‘";} 
fieldset,img,input,button {border:0} 
address,caption,cite,code,dfn,em,strong,th,var,i {font-style:normal;font-weight:normal} 
ol,ul {list-style:none} 
caption,th {text-align:left} 
h1,h2,h3,h4,h5,h6,b {font-weight:normal}
/*img{transition: all 0.5s;}
img:hover{-webkit-transform: scale(1.06, 1.06);transform: scale(1.06);}*/
.content{
	max-width: 1920px;
	width: 100%;
	float: left;
}


/*åŠ&nbsp;è½½åŠ¨ç”»*/
.he{
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 99999999999;
    background-color: rgba(0, 0, 0, 0.4);
}
.loader{
	width: 140px;
	height: 140px;
	text-align: center;
	position: absolute;
	top: calc(50% - 70px);
	left: calc(50% - 70px);
	padding-top: 15px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}
#loader-1{width: 60px;height: 60px;}
.load-msg{height: 50px;line-height: 50px;color: #fff;font-size: 13px;}
svg path, svg rect {fill: #17a085;}


/*å…¼å®¹æ€§cssä»£ç&nbsp;*/

/*å®šä¹‰å­å…ƒç´&nbsp;æŽ’åˆ—*/
.flex_direction{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
ã€€ã€€-webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -moz-box-orient:vertical;
    -moz-box-direction:normal;
    flex-direction:column;
    -webkit-flex-direction:column;
}
/*æ¨ªå‘æŽ’åˆ—å¸ƒå±€*/
.justify_content{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
ã€€ã€€-webkit-justify-content:center;
ã€€ã€€-moz-box-pack:center;
ã€€ã€€-webkit--moz-box-pack:center;
ã€€ã€€box-pack:center;
	justify-content:center;
}
/*ç«–å‘æŽ’åˆ—å¸ƒå±€*/
.align_items{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
ã€€ã€€-webkit-align-items:center;
ã€€ã€€box-align:center;
ã€€ã€€-moz-box-align:center;
ã€€ã€€-webkit-box-align:center;
	align-items:center;
}
/*ä¼¸ç¼©ç›’å­å¸ƒå±€å…¼å®¹*/
.flex{
	display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
ã€€ã€€box-flex:num;
ã€€ã€€-webkit-box-flex:num;
ã€€ã€€-moz-box-flex:num;
ã€€ã€€flex:num;
ã€€ã€€-webkit-flex:num;
}
/*å®šä¹‰å­å…ƒç´&nbsp;æŽ’åˆ—ï¼ˆä¸¤ç«¯å¯¹é½ï¼‰*/
.space_between{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
/*å®šä¹‰å­å…ƒç´&nbsp;æŽ’åˆ—ï¼ˆä¸¤ç«¯å¯¹é½ + è‡ªåŠ¨æ¢è¡Œï¼‰*/
.space_between_wrap{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
/*å®šä¹‰å­å…ƒç´&nbsp;æŽ’åˆ—ï¼ˆé&nbsp;å³å¯¹é½ï¼‰*/
.flex_end{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/*å®šä¹‰æ—‹è½¬180åº¦*/
.rotate_180{
	transform:rotate(180deg);
	-ms-transform:rotate(180deg); 	/* IE 9 */
	-moz-transform:rotate(180deg); 	/* Firefox */
	-webkit-transform:rotate(180deg); /* Safari å’Œ Chrome */
	-o-transform:rotate(180deg); 	/* Opera */
}

/*å®šä¹‰è¶…å‡ºä¸¤è¡Œæ˜¾ç¤º...*/
.txt_1{
	overflow: hidden;
    text-overflow: ellipsis; 
    -o-text-overflow: ellipsis;
    white-space:nowrap;
}
.txt_2{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2; 
}
.txt_3{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3; 
}
.txt_5{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:5; 
}
.txt_7{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:7; 
}
.txt_9{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:9; 
}


/*éšè—Yè½´æ»šåŠ¨æ¡è¿˜èƒ½ç»§ç»­æ»šåŠ¨å…¼å®¹å†™æ³•*/
.overf_y{
	overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    &amp;::-webkit-scrollbar { 
      display: none;
    }
}
.overf_y::-webkit-scrollbar{display: none;}



/*å¤´éƒ¨æ&nbsp;·å¼*/
.header{width: 100%;height: 240px;float: left;}
.head{
	width: 100%;
	height: 40px;
	float: left;
	background: #ff0000;
}
.head_main{width: 1200px;height: 40px;float: left;}
.head_main&gt;p{
	display: inline-block;
	float: left;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
}
.head_right{float: right;height: 40px;}
.head_right a{
	height: 40px;
	float: left;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
}
.head_right a:nth-child(1){margin-right: 40px;}
.head_right a:nth-child(1) img{
	width: 12px;
	height: 17px;
	float: left;
	margin-right: 10px;
}
.head_right a:nth-child(2) img{
	width: 16px;
	height: 15px;
	float: left;
	margin-right: 10px;
}
.head_top{width: 100%;height: 120px;float: left;}
.head_business{
	width: 1200px;
	height: 118px;
	float: left;
	border-bottom: 2px solid #f5f5f5 ; 
}
.head_business&gt;a{
	display: inline-block;
	width: 96px;
	height: 95px;
	float: left;
	margin-top: 12.5px;
	margin-right:109px;
}
.head_business a img{width: 96px;height: 95px;float: left;}
.head_business&gt;img{
	width: 345px;
	height: 51px;
	float: left;
	margin-top: 34.5px;
	margin-left: 0px;
}
.head_qrcode{
	width: 92px;
	height: 120px;
	float: left;
	margin-left: 245px;
}
.head_qrcode img{width: 92px;height: 92px;float: left;}
.head_phone{float: right;height: 120px;}
.head_phone img{
	width: 30px;
	height: 30px;
	float: left;
	margin-right: 24px;
}
.head_phone a{
	display: inline-block;
	height: 30px;
	line-height: 30px;
	float: left;
	font-size: 22px;
	color: #ff0000;
}


/* ä¸»èœå• */
.head_nav{
	position: relative;
	width:100%;
	height:36px;
	z-index: 9999;
	float: left;
	padding: 22px 0;
}
.head_nav .navbox{width: 1200px;float: left;}
.head_nav .nav{display: block; float: left;width:1200px;}
.head_nav .nav .nav_pc{ width: 100%;}
.head_nav .nav ul li{
	float:left;
	position: relative;
	box-sizing: border-box;
	z-index: 999;
}
.head_nav .nav ul li .f_a{
	line-height:36px;
	display:block;
	text-align:center;
	font-size:18px;
	color:#333333;
}
.head_nav .nav ul li:hover .f_a,.head_nav .nav ul .nav_active .f_a{background-color:#ff0000;color: #fff;transition:all .5s}
.head_nav .nav ul li .s_navbox{
	display:none;
	position: absolute;
	left: 0;
	width: 100%; 
	background-color: #fff;
	z-index: 9999;
	box-sizing: border-box;
	top:37px;
}
.head_nav .nav ul li .s_navbox .s_a a{
	color:#333333;
	font-size:18px;
	text-transform:uppercase;
	display:block;
	text-align: center;
	line-height: 36px;
}
.head_nav .nav ul li .s_navbox .s_a a:hover{background-color:#ff0000;color: #fff;}
.m_nav{display:none}
.headlf .m_logo{display: none}
.headrg .m_menuimg{display: none}
.active{background-color: #ff0000}
.activ2{background-color: #ff0000}

/*å°äºŽ1600å¤§äºŽ1200ç¨å¾®è°ƒæ•´ä¸‹å­—ä½“*/
/*@media screen and (max-width: 1600px) and (min-width:1200px) {
   .nav ul li .f_a{font-size:16px}
   .nav ul li .s_navbox .s_a a{font-size:16px}
   .foot_top ul{margin-left:60px}
   .nav ul li .s_navbox .s_a{width:100%}
}*/


/*åº•éƒ¨æ&nbsp;·å¼*/
.footer{
	width: 100%;
	height: 400px;
	float: left;
	background: #ff0400;
}
.footer_main{
	width: 920px;
	float: left;
}
.footer_nav{
	width: 100%;
	height: 76px;
	float: left;
	border-bottom: 1px solid #fff;
	margin-top: 6px;
}
.footer_nav a{
	display: inline-block;
	height: 76px;
	line-height: 76px;
	font-size: 18px;
	color: #fff;
	float: left;
	margin-right: 38px;
}
.footer_nav a:nth-child(1){margin-left: 42px;}
.footer_desc{
	width: 338px;
	height: 270px;
	float: left;
	margin-top: 47px;
}
.footer_desc ul{width: 100%;float: left;}
.footer_desc ul li{
	width: 100%;
	height: 40px;
	line-height: 40px;
	float: left;
	font-size: 16px;
	color: #fff;
	margin-bottom: 10px;
	border-bottom: 1px solid #ff3633;
}
.footer_desc ul li img{width: 24px;height: 28px;margin-top: -8px;}
.footer_desc ul li:last-child{
	height: 54px;
	line-height: 54px;
	border: 0px;
	margin-bottom: 0px;
}
.footer_qrcode{
	width: calc(100% - 385px);
	height: 308px;
	float: left;
	margin-top: 9px;
	margin-left:47px;
}
.footer_qrcodes{
	width: 216px;
	height: 216px;
	float: left;
	background: url('../img/default/style-erweima.png') no-repeat;
	background-size: 100% 100%;
}
.footer_qrcodes img{
	width: 85%;
	height: 85%;
	float: left;
}


/*æœ€åº•éƒ¨åˆ†*/
.foot{
	width: 100%;
	height: 45px;
	float: left;
	background: #ad0300;
}
.foot_main{
	width: 1200px;
	float: left;
	height: 45px;
}
.foot_main p{
	display: inline-block;
	height: 45px;
	float: left;
	line-height: 45px;
	font-size: 12px;
	color: #fff;
}
.foot_main ul{width: 214px;height: 45px;float: left;}
.foot_main ul li{height: 45px;float: left;cursor: pointer;}
.foot_main ul li img{
	width: 30px;
	height: 30px;
	float: left;
}



/*å…¬å…±æ¨¡å—æ&nbsp;‡é¢˜*/
.i_title{width: 206px;height: 50px;float: left;}


/*é¢åŒ…å±‘*/
.pr_crumbs{
	width: 100%;
	height: 80px;
	float: left;
	background: #eeeeee;
}
.pr_crumbs span{
	display: inline-block;
	width: 1200px;
	height: 80px;
	line-height: 80px;
	font-size: 16px;
	color: #333333;
}
.pr_crumbs span a{display: inline-block;color: #ff0000;}
.pr_crumbs span i{color: #ff0000;margin:0 10px;}



/*è®¢è´­å¼¹çª—æ&nbsp;·å¼*/
.order_bg{
    width: 100%;
    position: fixed;
    top:0px;
    bottom: 0px;
    background: rgba(0,0,0,0.4);
    z-index: 9;
    transition: all 0.5s;
}
.order_pop{
    width: 935px;
    height: 706px;
    float: left;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}
.order_pop&gt;p{
    display: inline-block;
    width: 100%;
    height: 68px;
    line-height: 68px;
    float: left;
    text-align: center;
    font-size: 32px;
    letter-spacing: 6px;
    color: #fefefe;
    background: #ff0000;
}
.pop_cont{
    width: 100%;
    height: calc(706px - 68px);
    float: left;
}
.pop_form{
    width: 708px;
    /*height: 492px;*/
    float: left;
}
.pop_form label{
    display: inline-block;
    width: 100%;
    min-height: 50px;
    padding: 12px 0px;
    float: left;
}
.pop_form label&gt;span{
    display: inline-block;
    width: 32px;
    height: 50px;
    line-height: 50px;
    color: #ff0000;
    font-size: 28px;
    text-align: left;
    float: left;
}
.pop_form label&gt;input{
    display: inline-block;
    width: calc(100% - 32px);
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #000;
    text-indent: 35px;
    float: left;
    background: #eceaea;
    outline: none;
}
.pop_form label&gt;textarea{
    display: inline-block;
    width: calc(100% - 32px);
    height: 150px;
    padding: 10px;
    float: left;
    background: #eceaea;
    text-indent: 25px;
    font-size: 16px;
    color: #000;
    line-height: 2em;
    border:0px;
    outline: none;
    resize: none;
}
.pop_form label&gt;textarea::-webkit-scrollbar{display: none;}
.sub_btn{
    width: 100%;
    height: 40px;
    float: left;
    margin-top: 28px;
}
.sub_btn a{
    display: inline-block;
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    color: #fff;
    text-align:center;
    letter-spacing: 1px;
    float: left;
    background: #ff0000;
    border-radius: 20px;
}
.sub_btn a:nth-child(1){margin-right: 52px;}




/*åœ¨çº¿å®¢æœæ&nbsp;·å¼*/
.online{
	width: 39px;
	height: 361px;
	float: left;
	position: fixed;
	top:80px;
	right: 0px;
	transition: all 0.5s;
	z-index: 10000000;
}
.online&gt;a{
	display: inline-block;
	width: 39px;
	height: 161px;
	float: left;
	background: url('../img/default/online_btn.png') no-repeat;
	background-size: 100%;
	box-shadow: 0px 2px 10px rgba(179,6,6,0.63);
	border-top-left-radius:20px; 
	border-bottom-left-radius:20px;
}
.online_right{
	width: 180px;
	float: left;
	background: url('../img/default/online_bg.png') no-repeat;
	background-size: 180px 361px;
	background-position: top left;
	box-shadow: 0px 8px 28px rgba(0,0,0,0.3);
	position: absolute;
	top:0px;
	left:38px; 
}
.online_right&gt;img{
	width: 86px;
	height: 86px;
	float: left;
	margin:0 47px;
	margin-top: 97px;
}
.online_right i{
	display: inline-block;
	width: 147px;
	margin:12px 16.5px;
	float: left;
	border-bottom: 1px dashed #999999;
}
.online_right ul{width: 160px;float: left;margin:0 10px;}
.online_right ul li{
	width: 100%;
	height: 18px;
	float: left;
	margin-bottom: 12px;
}
.online_right ul li:last-child{margin-bottom: 0px;}
.online_right ul li a{
	display: inline-block;
	width: 100%;
	height: 100%;
	float: left;
}
.online_right ul li a img{
	width: 17px;
	height: 18px;
	float: left;
}
.online_right ul li a span{
	display: inline-block;
	width: 55px;
	height: 18px;
	float: left;
	line-height: 18px;
	font-size: 12px;
	color: #d60303;
	margin-right: 3px;
	text-align: center;
}
.online_right ul li a p{
	width: 75px;
	height: 18px;
	float: left;
	line-height: 18px;
	font-size: 12px;
	color: #0006ff;
}
.online_right ul li:nth-child(2) a span{color: #ff7800;}
.online_right ul li:nth-child(3) a span{color: #0084ff;}
.online_con{
	width: 170px;
	padding: 0 10px;
	height: 38px;
	float: left;
	margin-bottom: 10px;
}
.online_con img{
	width: 31px;
	height: 24px;
	float: left;
	margin-top: 7px;
	margin-left: 10px;
}
.online_con span{
	display: inline-block;
	width: calc(100% - 60px);
	height: 20px;
	float: left;
	line-height: 20px;
	font-size: 14px;
	color: #d60303;
	text-align: center;
}
.online_con p{
	display: inline-block;
	width: calc(100% - 60px);
	height: 18px;
	font-size: 12px;
	float: left;
	line-height: 18px;
	color: #d60303;
	text-align: center;
}



/*åŠŸèƒ½æ&nbsp;·å¼*/
.funct{
	width: 50px;
	height: 200px;
	float: left;
	position: fixed;
	bottom: 45px;
	right: 0px;
	background: #fff;
	box-shadow: 0px 9px 15px rgba(0,0,0,0.15);
	z-index: 1000000; 
}
.funct a{
	width: 100%;
	height: 50px;
	float: left;
	position: relative;
}
.funct a&gt;ul{
	width: 214px;
    height: 45px;
    float: left;
    position: absolute;
    right: 60px;
    display: none;
    transition: all 0.5s;
}
.funct a&gt;ul li{height: 45px;float: left;}
.funct a&gt;ul li img{width: 30px;height: 30px;float: left;}
.funct a:nth-child(1){background: #ff0000;}
.funct a:nth-child(1)&gt;img{width: 32px;height: 24px;float: left;}
.funct a:nth-child(2)&gt;img{width: 30px;height: 30px;float: left;}
.funct a:nth-child(3)&gt;img{width: 30px;height: 26px;float: left;}
.funct a:nth-child(4)&gt;img{width: 31px;height: 31px;float: left;}


/*ç•™è¨€æ¿*/
.msg_age{
	width: 250px;
	float: left;
	box-shadow: 0px 9px 15px rgba(0,0,0,0.15); 
	position: fixed;
	left: 0px;
	bottom:45px;
	background: #fff;
}
.msg_age span{
	display: inline-block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	float: left;
	font-size: 16px;
	color: #fff;
	background: #ff0000;
	text-align: center;
}
.msg_age_form{
	width: 220px;
	float: left;
	padding: 20px 15px;
}
.msg_age_form input{
	width: 100%;
	height: 30px;
	float: left;
	line-height: 30px;
	font-size: 14px;
	color: #333;
	text-indent: 8px;
	background: #f5f5f5;
	outline: none;
	margin-top: 12px;
}
.msg_age&gt;a{
	display: inline-block;
	width: 100px;
	height: 30px;
	float: left;
	line-height: 30px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	background: #ff0000;
	margin: 0 75px;
	margin-bottom: 20px; 
}</pre></body></html>